internal/strconv.floatInfo.bias (field)
16 uses
internal/strconv (current package)
atof.go#L318: exp = flt.bias
atof.go#L331: exp = flt.bias
atof.go#L364: if exp < flt.bias+1 {
atof.go#L365: n := flt.bias + 1 - exp
atof.go#L370: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L382: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L389: exp = flt.bias
atof.go#L396: exp = 1<<flt.expbits - 1 + flt.bias
atof.go#L402: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L497: maxExp := 1<<flt.expbits + flt.bias - 2
atof.go#L498: minExp := flt.bias + 1
atof.go#L541: exp = flt.bias
atof.go#L551: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
ftoa.go#L21: bias int
ftoa.go#L114: exp += flt.bias
ftoa.go#L283: minexp := flt.bias + 1 // minimum possible exponent
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |